home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / dtime / data.1 / Dtset.h < prev    next >
C/C++ Source or Header  |  1996-07-08  |  800b  |  37 lines

  1. // dtset.h : main header file for the DATENTRY application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"        // main symbols
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CDTSetApp:
  12. // See datentry.cpp for the implementation of this class
  13. //
  14.  
  15. class CDTSetApp : public CWinApp
  16. {
  17. public:
  18.     CDTSetApp();
  19.  
  20. protected:
  21.     //{{AFX_VIRTUAL(CDTSetApp)
  22.     public:
  23.     virtual BOOL InitInstance();
  24.     virtual void WinHelp(DWORD dwData, UINT nCmd = HELP_CONTEXT);
  25.     virtual int ExitInstance();
  26.     //}}AFX_VIRTUAL
  27.  
  28.     //{{AFX_MSG(CDTSetApp)
  29.     //}}AFX_MSG
  30.     DECLARE_MESSAGE_MAP()
  31.  
  32.   CString m_sHelpFilePath;
  33. };
  34.  
  35.  
  36. /////////////////////////////////////////////////////////////////////////////
  37.